{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Resource identifier returned by the operation."
    },
    "workspace_id": {
      "type": "string",
      "description": "Workspace that owns this record."
    },
    "name": {
      "type": "string",
      "description": "name recorded for this result."
    },
    "domain": {
      "type": "string",
      "description": "domain recorded for this result."
    },
    "created_at": {
      "type": "string",
      "description": "UTC timestamp when the record was created."
    },
    "created": {
      "description": "True when this request created the record; false when an existing record was reused.",
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "workspace_id",
    "name",
    "domain",
    "created_at"
  ],
  "additionalProperties": {}
}
