SodaListing

DatabaseEnterpriseJsonMachine-LearningNosqlOracleRestSql

Properties

Name Type Description
items array
hasMore boolean
count integer
offset integer
limit integer
View JSON Schema on GitHub

JSON Schema

oracle-database-19c-sodalisting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SodaListing",
  "title": "SodaListing",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "etag": {
            "type": "string"
          },
          "lastModified": {
            "type": "string",
            "format": "date-time"
          },
          "created": {
            "type": "string",
            "format": "date-time"
          },
          "mediaType": {
            "type": "string"
          },
          "value": {
            "type": "object",
            "additionalProperties": true
          }
        }
      }
    },
    "hasMore": {
      "type": "boolean"
    },
    "count": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "limit": {
      "type": "integer"
    }
  }
}