Rely.io Blueprint
A blueprint schema defining the structure and attributes of a catalog entity type in Rely.io
Developer ExperienceInternal Developer PortalPlatform EngineeringSoftware CatalogService CatalogEngineering Scorecards
{
"$schema": "https://json-schema.org/draft/2020-12",
"$id": "https://api-evangelist.github.io/rely/json-schema/rely-blueprint-schema.json",
"title": "Rely.io Blueprint",
"description": "A blueprint schema defining the structure and attributes of a catalog entity type in Rely.io",
"type": "object",
"required": ["id", "name"],
"properties": {
"id": {
"type": "string",
"description": "Globally unique blueprint identifier",
"pattern": "^[a-z][a-z0-9-_]*$"
},
"name": {
"type": "string",
"description": "User-friendly display name for the blueprint"
},
"description": {
"type": ["string", "null"],
"description": "Optional overview of what this blueprint represents"
},
"properties": {
"type": "object",
"description": "Schema definitions for properties of entities of this type",
"additionalProperties": {
"$ref": "#/$defs/BlueprintProperty"
}
},
"relations": {
"type": "object",
"description": "Relation definitions linking this blueprint to other blueprint types",
"additionalProperties": {
"$ref": "#/$defs/BlueprintRelation"
}
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Blueprint creation timestamp"
},
"updatedAt": {
"type": "string",
"format": "date-time",
"description": "Blueprint last update timestamp"
}
},
"$defs": {
"BlueprintProperty": {
"type": "object",
"description": "A property definition within a blueprint schema",
"required": ["title", "type"],
"properties": {
"title": {
"type": "string",
"description": "Display name for the property"
},
"type": {
"type": "string",
"enum": ["string", "integer", "number", "boolean", "array", "object"],
"description": "JSON Schema data type"
},
"description": {
"type": "string",
"description": "Description of the property's purpose"
},
"format": {
"type": "string",
"description": "JSON Schema format (date-time, uri, email, etc.)"
},
"enum": {
"type": "array",
"description": "Allowed values for enum properties"
},
"required": {
"type": "boolean",
"description": "Whether this property is required on entities"
}
}
},
"BlueprintRelation": {
"type": "object",
"description": "A relation linking this blueprint to another blueprint type",
"required": ["title", "target"],
"properties": {
"title": {
"type": "string",
"description": "Display name for the relation"
},
"target": {
"type": "string",
"description": "Target blueprint identifier"
},
"many": {
"type": "boolean",
"description": "Whether this is a one-to-many relation",
"default": false
},
"description": {
"type": "string",
"description": "Description of the relation"
}
}
}
}
}
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/rely-blueprint"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no email required.
A second provider on the same verified email joins the account you already have.