Type Alias ArvoContractJSONSchema

ArvoContractJSONSchema: {
    description: string | null;
    metadata: Record<string, any> | null;
    uri: string;
    versions: Omit<VersionedArvoContractJSONSchema, "uri" | "description">[];
}

Represents the JSON Schema representation of an ArvoContract, used for serialization and documentation purposes. This structure follows the JSON Schema specification.