page-shield_cookie

APIs.ioEngineeringPlatform

Properties

Name Type Description
domain_attribute string
expires_attribute string
first_seen_at string
host string
http_only_attribute boolean
id object
last_seen_at string
max_age_attribute integer
name string
page_urls array
path_attribute string
same_site_attribute string
secure_attribute boolean
type string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-page-shield-cookie-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/page-shield_cookie",
  "title": "page-shield_cookie",
  "properties": {
    "domain_attribute": {
      "example": "cloudflare.com",
      "type": "string"
    },
    "expires_attribute": {
      "example": "2021-10-02T09:57:54Z",
      "format": "date-time",
      "type": "string"
    },
    "first_seen_at": {
      "example": "2021-08-18T10:51:08Z",
      "format": "date-time",
      "type": "string"
    },
    "host": {
      "example": "blog.cloudflare.com",
      "type": "string"
    },
    "http_only_attribute": {
      "example": true,
      "type": "boolean"
    },
    "id": {
      "$ref": "#/components/schemas/page-shield_id"
    },
    "last_seen_at": {
      "example": "2021-09-02T09:57:54Z",
      "format": "date-time",
      "type": "string"
    },
    "max_age_attribute": {
      "example": 3600,
      "type": "integer"
    },
    "name": {
      "example": "session_id",
      "type": "string"
    },
    "page_urls": {
      "example": [
        "blog.cloudflare.com/page1",
        "blog.cloudflare.com/page2"
      ],
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "path_attribute": {
      "example": "/",
      "type": "string"
    },
    "same_site_attribute": {
      "enum": [
        "lax",
        "strict",
        "none"
      ],
      "example": "strict",
      "type": "string"
    },
    "secure_attribute": {
      "example": true,
      "type": "boolean"
    },
    "type": {
      "enum": [
        "first_party",
        "unknown"
      ],
      "example": "first_party",
      "type": "string"
    }
  },
  "required": [
    "id",
    "type",
    "name",
    "host",
    "first_seen_at",
    "last_seen_at"
  ]
}