Skip to main content

Get all schemas containing category

GET 

/schemas/by/category/:categoryId

Get all schemas containing category

Request

Path Parameters

    categoryId categoryIdrequired

    The categoryId of the schema

Query Parameters

    name string

    Search for schema by name

    startDate date-time

    Search by start date

    endDate date-time

    Search by end date

    page integer

    Possible values: >= 1

    Default value: 1

    Specify the page number for pagination (default is 1).

    limit integer

    Default value: 10

    Specify the number of projects per page (default is 10, 0 gets all results).

    orderBy string

    Possible values: [createdAt, type, name, state]

    Field to order the results by (e.g., 'createdAt', 'ownerId'). Default is 'createdAt'.

    sortOrder string

    Possible values: [asc, desc]

    Default value: desc

    'asc' for ascending or 'desc' for descending order. Default is 'desc'.

Responses

Schemas successfully retrieved

Schema

  • Array [

  • state schemaState (string)

    Possible values: [draft, open, closed]

    type string
    description string

    Possible values: <= 3000 characters

    approvalMethod string
    voteThresholdSettings string

    Vote threshold

    tags string[]
    data stringrequired
    projectId projectId (string)required

    Unique identifier for Project

    name stringrequired
    categoryId string

    Unique identifier for Category

    id string

    Unique identifier for Schema

    createdAt date-time

    Time representation of schema creation

    thumbnail string

    Url for thumbnail

    displayInteractive string
    category object[]

    Categories for schema

    displayThumbnail string
    postProcessing string

    A json holding certain regulations for the post processing of submissions assigned to the schema

  • ]

Loading...