Identifiable

Defines the identity of a resource.

APIs.ioEngineeringPlatform

Properties

Name Type Description
id string A String identifier.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-identifiable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Identifiable",
  "title": "Identifiable",
  "properties": {
    "id": {
      "type": "string",
      "description": "A String identifier.",
      "readOnly": true
    }
  },
  "description": "Defines the identity of a resource.",
  "allOf": [
    {
      "$ref": "#/components/schemas/ResponseBase"
    }
  ]
}