<@U04UQ68083H> Unable to find JSON Schema ID
# ory-copilot
a
@chilly-king-10285 Unable to find JSON Schema ID
c
A message from kapa.ai
The JSON Schema ID is typically defined at the beginning of your schema and it's used to uniquely identify your schema. In the examples provided in the extracts, the ID is defined with the
$id
property. Here's an example:
Copy code
json {    "$id": "<http://mydomain.com/schemas/v2/customer.schema.json>",    "$schema": "<http://json-schema.org/draft-07/schema#>",    "title": "A customer (v2)",    "type": "object",    ... }
In this example, the JSON Schema ID is
<http://mydomain.com/schemas/v2/customer.schema.json>
. If you're unable to find the JSON Schema ID, it might be that it's not defined in your schema. If that's the case, you might want to add it to your schema to uniquely identify it. For more information, you can refer to the [Ory documentation](https://www.ory.sh/docs/kratos/manage-identities/customize-identity-schema).